}
default void fillAll(final NullaryFunction<N> supplier) {
final long tmpLimit = this.count();
for (long i = 0L; i < tmpLimit; i++) {
this.fillOne(i, supplier);
}
}
}
default void fillAll(final NullaryFunction<N> supplier) {
this.fillRange(0L, this.count(), supplier);
}
/**